home *** CD-ROM | disk | FTP | other *** search
/ SuperModels in the Rainforest / SuperModels in the Rainforest.iso / rain.dxr / 00004_A handlers.ls < prev    next >
Encoding:
Text File  |  1995-10-13  |  888 b   |  38 lines

  1. on aLoadSeries asName, abUpdateStatus
  2.   global gbDebug
  3.   repeat with i = 1 to 100
  4.     set sTempName to asName & i
  5.     set iCastNum to the number of cast sTempName
  6.     if iCastNum = -1 then
  7.       exit repeat
  8.     end if
  9.     preLoadCast(iCastNum)
  10.   end repeat
  11. end
  12.  
  13. on aDebug asDebugMsg
  14.   put asDebugMsg
  15. end
  16.  
  17. on aRotatePicture asName, aiSprite
  18.   set iRetVal to 1
  19.   set iCurNum to value(the last char in asName)
  20.   put EMPTY into char length(asName) of asName
  21.   set iCurNum to iCurNum + 1
  22.   set stempCast to asName & iCurNum
  23.   set iNextCast to the number of cast stempCast
  24.   if iNextCast = -1 then
  25.     set stempCast to asName & "1"
  26.     set iNextCast to the number of cast stempCast
  27.     set iRetVal to 0
  28.   end if
  29.   set the castNum of sprite aiSprite to iNextCast
  30.   puppetTransition(23, 4, 8, 0)
  31.   return iRetVal
  32. end
  33.  
  34. on aMainScreenExit
  35.   global gsLastPlace
  36.   set gsLastPlace to "MainScreen"
  37. end
  38.